home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / libvte9 / decset next >
Text File  |  2009-10-02  |  284b  |  17 lines

  1. #!/bin/sh
  2. #
  3. #  Set or reset DEC private modes.  You'll need the XTerm docs.
  4. #
  5. if [ "$#" -eq 0 ] ; then
  6.     echo usage: `basename $0` '[ -r | -s ] mode [...]'
  7.     exit
  8. fi
  9. char=h
  10. for arg in $@ ; do
  11.     case "$arg" in
  12.     -r) char=l ;;
  13.     -s) char=h ;;
  14.     *) echo -n -e '\033[?'${arg}${char}
  15.     esac
  16. done
  17.